home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / security / crack_4.1-tar / Scripts / status < prev   
Encoding:
Text File  |  1992-06-25  |  630 b   |  29 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program is copyright Alec Muffett 1991, and is provided as part of
  5. # the Crack v4.0 Password Cracking package.  The author disclaims all
  6. # responsibility or liability with respect to it's usage or its effect
  7. # upon hardware or computer systems, and maintains copyright as set out in
  8. # the "LICENCE" document which accompanies distributions of Crack v4.0 and
  9. # upwards. So there...
  10. ###
  11.  
  12. cat Scripts/network.conf | 
  13. awk -F: '
  14. /^[A-Za-z]/{
  15.     print "echo ::: Calling", $1, " :-";
  16.  
  17.     if ($4 == "")
  18.     {
  19.         rshf = "-n";
  20.     } else
  21.     {
  22.         rshf = "-n -l " $4;
  23.     }
  24.     print "rsh ", $1, rshf, "\"uptime ; ps x\"";
  25. } ' |
  26. sh
  27.  
  28. exit 0
  29.